@charset "UTF-8";
/* CSS Document */


/*Desktop / Global View*/

body {
	font-family: 'Open Sans', sans-serif;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
	background-color: #DDDDDD;
}

.col {
	float: left;
	padding: 1%;
}

.col-lg {
	width: 31.3%;
}

.col-lg img {
	width: 100%;
	height: auto;
	display: block;
}

.slicknav_menu {
	display: none;
}

#menu {
	float: right;
}

#menu li {
	display: inline-block;
}

#menu li a {
	text-decoration: none;
	color: #4e4e4e;
	padding: 8px;
	font-size: 18px;
}

header {
	padding: 10px 20px 20px 20px;
}


.hero {
	background-image: url(images/hero-background.jpg);
	padding: 52px 685px 72px 72px;
	background-size: cover;
}


.subheading {
	color: #fff;
	font-weight: 800;
	font-size:40px;
	margin-bottom: -40px;
}

h1 {
	color: #fff;
	font-weight: 55000;
	font-size: 36px;
	margin-bottom: -30px;
}

h2 {
	color: #fff;
	font-weight: 55000;
	font-size: 24px;
	margin-bottom: -5px;
}


.heading-body-copy {
	color: #fff;
	margin-right: 20%;
}

.lets-talk {
	background-color: #D92A2A;
	padding: 8px 30px;
	text-decoration: none;
	color: #FFF;
}




/* ... CSS เดิมของคุณ ... */

    /* เพิ่ม CSS สำหรับ Video Wrapper เพื่อให้วิดีโอมีสัดส่วนที่ถูกต้อง */
    .video-container {
        position: relative;
        width: 80%; /* ความกว้างของวิดีโอ */
        max-width: 900px; /* กว้างสูงสุดไม่เกิน 900px */
        aspect-ratio: 16 / 9; /* บังคับสัดส่วน 16:9 */
        background: #000;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* ปรับปุ่ม Close ให้เห็นชัดขึ้นเมื่ออยู่กับวิดีโอ */
    .close {
        /* ค่าเดิม */
        position: absolute;
        top: 20px;
        right: 40px;
        color: #f1f1f1;
        font-size: 50px;
        font-weight: bold;
        cursor: pointer;
        z-index: 100000;
    }